:root {
  --bg: #ffffff;
  --bg-soft: #f5f3fa;
  --bg-dark: #0c0a14;
  --ink: #1a1a2e;
  --ink-soft: #4a4660;
  --muted: #7a7490;
  --border: rgba(0,0,0,0.06);
  --accent: #7c3aed;
  --accent-soft: rgba(124,58,237,0.08);
  --accent-dark: #5b21b6;
  --cta: #7c3aed;
  --cta-light: #a855f7;
  --success: #10b981;
  --sans: 'DM Sans', -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══ TOP BAR ═══ */
.top-bar {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
}
.top-bar-inner { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.top-bar strong { color: #fff; }
.top-bar-sep { color: rgba(255,255,255,0.2); }

/* ═══ NAV ═══ */
.nav { padding: 16px 0; border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-brand { font-size: 15px; font-weight: 800; color: var(--ink); }

.nav-cta {
  font-size: 13px; font-weight: 700; color: #fff;
  background: var(--cta); padding: 10px 22px;
  border-radius: 8px; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(124,58,237,0.3); }

/* ═══ HERO ═══ */
.hero {
  background: linear-gradient(180deg, #ede9ff 0%, #f3eaff 30%, #fff 100%);
  padding: 80px 0 60px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 18px; border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.15;
  color: var(--ink);
  margin-bottom: 18px;
}

.highlight { color: var(--accent); }

.hero-sub {
  font-size: 18px; color: var(--ink-soft);
  max-width: 600px; margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-video { max-width: 700px; margin: 0 auto 36px; }

.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--bg-dark);
  border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff; font-size: 24px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}

.video-placeholder p { color: rgba(255,255,255,0.5); font-size: 14px; }

.hero-cta {
  display: inline-block;
  font-size: 18px; font-weight: 800;
  color: #fff; background: linear-gradient(135deg, var(--cta), var(--cta-light));
  padding: 18px 40px; border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(124,58,237,0.3);
  transition: transform 0.15s, box-shadow 0.15s;
}
.hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(124,58,237,0.4); }

.hero-guarantee { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ═══ SECTIONS ═══ */
.section-header { text-align: center; margin-bottom: 40px; }

.section-kicker {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800; color: var(--ink);
  line-height: 1.2; margin-bottom: 12px;
}

.section-sub { font-size: 17px; color: var(--ink-soft); max-width: 560px; margin: 0 auto; }

/* ═══ HOW IT WORKS ═══ */
.how-it-works { padding: 80px 0; background: var(--bg); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.step-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
}

.step-badge {
  position: absolute; top: 16px; right: 16px;
  font-size: 11px; font-weight: 700;
  color: var(--success); background: rgba(16,185,129,0.08);
  padding: 4px 10px; border-radius: 6px;
}

.step-num {
  font-size: 32px; font-weight: 800;
  color: var(--accent); opacity: 0.2;
  margin-bottom: 8px;
}

.step-card h3 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ═══ WHAT YOU GET ═══ */
.what-you-get { padding: 80px 0; background: var(--bg-soft); }

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.output-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.output-icon {
  font-size: 24px; font-weight: 800; color: var(--accent);
  opacity: 0.3; margin-bottom: 12px;
}
.output-card h3 { font-size: 17px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.output-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.65; }

/* ═══ CONNECTION ═══ */
.connection { padding: 80px 0; background: var(--bg); }

.connection-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.connection-card {
  flex: 1;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.connection-card.is-active {
  background: linear-gradient(135deg, #ede9ff, #f3eaff);
  border: 2px solid rgba(124,58,237,0.2);
}

.connection-card h3 { font-size: 16px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.connection-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 12px; }
.connection-link { font-size: 13px; font-weight: 700; color: var(--accent); text-decoration: none; }
.connection-arrow { font-size: 28px; color: var(--accent); font-weight: 800; flex-shrink: 0; }

/* ═══ FINAL CTA ═══ */
.final-cta {
  padding: 80px 0;
  background: var(--bg-dark);
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800; color: #fff;
  line-height: 1.3; margin-bottom: 28px;
}

.final-cta .hero-guarantee { color: rgba(255,255,255,0.4); }

/* ═══ FOOTER ═══ */
.footer {
  padding: 24px 0;
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
}

.footer-brand { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.4); }
.footer-legal { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero { padding: 48px 0 40px; }
  .connection-grid { flex-direction: column; }
  .connection-arrow { transform: rotate(90deg); }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}
